*{
    margin: 0;
    padding: 0;
}
.el-dialog{
    border-radius: 16px; 
}
 .apply-for-btn{
    width: 400px;
    height: 48px;
    text-align: center;
    background: #FF8000;
    border-radius: 4px;
}
@media screen and (min-width: 1200px) {
    .head-banner .el-carousel__container{
        height: 460px;
    }
    .carousel-item-box{
        position: relative;
    }
    .carousel-item-box-text{
        position: absolute;
        top:82px;
        left: 50%;
        width: 1200px;
        margin-left: -600px;
        /* height: 100%; */
        overflow: hidden;
        text-align: center;
    }
    .carousel-item-box-text-title{
        font-size: 48px;
        font-family: HarmonyOS Sans SC;
        font-weight: bold;
        color: #fff;
        line-height: 66px;
    }
    .carousel-item-box-text-body{
        font-size: 24px;
        font-family: HarmonyOS Sans SC;
        font-weight: 400;
        color: #fff;
        line-height: 66px;
    }
    /* 新闻列表 */
    .new-list{
        /* height: 1300px; */
    }
    .new-tag-box{
        margin: 40px auto 40px;
        width: 800px;
        display: flex;
        justify-content: space-around;
    }
    .new-tag{
        width: 144px;
        height: 48px;
        background: #FFFFFF;
        border: 1px solid #E0E2E4;
        border-radius: 8px;
        text-align: center;
        line-height: 48px;

        font-size: 16px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #03081A;
    }
    .new-tag-active{
        width: 144px;
        height: 48px;
        background: #3F9AEB;
        border-radius: 8px;
        text-align: center;
        line-height: 48px;

        font-size: 16px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #FFFFFF;
    }
    .new-list-body{
        width: 1200px;
        /* height: 1207px; */
        margin: 40px auto;
        display: flex;
        flex-wrap: wrap;
        /* justify-content: space-between; */
    }
    .new-list-item{
        width: 384px;
        height: 448px;
        background: #FFFFFF;
        border: 1px solid #DCDCDC;
        border-radius: 8px;
        margin-bottom: 25px;
        overflow: hidden;
        margin-left: 5px;
        margin-right: 5px;

        transition: transform .2s ease-in-out; /* 添加过渡效果 */
    }

    .new-list-item:hover{
        transform: scale(1.03); /* 鼠标悬停时放大10% */
    }

    .item-img{
        width: 384px;
        height: 240px;
        background: #E4E4E4;
        border-radius: 8px 8px 0px 0px;
    }
    .item-img img {
        width: 100%;
        height: 100%;
        transition: transform .2s ease-in-out; /* 添加过渡效果 */
    }

    .item-title{
        margin: 39px 20px 23px 24px;
        width: 340px;
        font-size: 20px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #03081A;

        overflow: hidden; /* 隐藏超出部分 */
        text-overflow: ellipsis; /* 显示省略号 */
        white-space: nowrap; /* 禁止换行 */
        display: inline-block; /* 确保元素能正确应用此效果 */
    }
    .item-body{
        margin: 0px 20px 30px 24px;
        width: 340px;
        font-size: 14px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #666666;

        display: -webkit-box;
        -webkit-line-clamp: 3; /* 显示的最大行数 */
        -webkit-box-orient: vertical; 
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .item-time{
        margin: 0px 20px 0px 24px;
        font-size: 14px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #999999;
    }

    .page-box{
        /* height: 176px; */
        width: 1200px;
        margin: 40px auto 40px;
    }
}

@media screen and (min-width: 751px) and (max-width: 1199px) {
    .head-banner .el-carousel__container{
        height: 460px;
    }
    .carousel-item-box{
        position: relative;
    }
    .carousel-item-box-text{
        position: absolute;
        top:82px;
        left: 50%;
        width: 100%;
        margin-left: -50%;
        /* height: 100%; */
        overflow: hidden;
        text-align: center;
    }
    .carousel-item-box-text-title{
        font-size: 48px;
        font-family: HarmonyOS Sans SC;
        font-weight: bold;
        color: #fff;
        line-height: 66px;
    }
    .carousel-item-box-text-body{
        font-size: 24px;
        font-family: HarmonyOS Sans SC;
        font-weight: 400;
        color: #fff;
        line-height: 66px;
    }
    /* 新闻列表 */
    .new-list{
        /* height: 1300px; */
    }
    .new-tag-box{
        margin: 40px auto 40px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .new-tag{
        width: 144px;
        height: 48px;
        background: #FFFFFF;
        border: 1px solid #E0E2E4;
        border-radius: 8px;
        text-align: center;
        line-height: 48px;

        font-size: 16px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #03081A;
    }
    .new-tag-active{
        width: 144px;
        height: 48px;
        background: #3F9AEB;
        border-radius: 8px;
        text-align: center;
        line-height: 48px;

        font-size: 16px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #FFFFFF;
    }
    .new-list-body{
        width: 100%;
        /* height: 1207px; */
        margin: 40px auto;
        display: flex;
        flex-wrap: wrap;
        /* justify-content: space-evenly; */
    }
    .new-list-item{
        width: 384px;
        height: 448px;
        background: #FFFFFF;
        border: 1px solid #DCDCDC;
        border-radius: 8px;
        margin-bottom: 25px;
        overflow: hidden;
        margin-left: 5px;
        margin-right: 5px;

        transition: transform .2s ease-in-out; /* 添加过渡效果 */
    }

    .new-list-item:hover{
        transform: scale(1.03); /* 鼠标悬停时放大10% */
    }
    .item-img{
        width: 384px;
        height: 240px;
        background: #E4E4E4;
        border-radius: 8px 8px 0px 0px;
    }
    .item-img img {
        width: 100%;
        height: 100%;
    }
    .item-title{
        margin: 39px 20px 23px 24px;
        width: 340px;
        font-size: 20px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #03081A;

        overflow: hidden; /* 隐藏超出部分 */
        text-overflow: ellipsis; /* 显示省略号 */
        white-space: nowrap; /* 禁止换行 */
        display: inline-block; /* 确保元素能正确应用此效果 */
    }
    .item-body{
        margin: 0px 20px 30px 24px;
        width: 340px;
        font-size: 14px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #666666;

        display: -webkit-box;
        -webkit-line-clamp: 3; /* 显示的最大行数 */
        -webkit-box-orient: vertical; 
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .item-time{
        margin: 0px 20px 0px 24px;
        font-size: 14px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #999999;
    }

    .page-box{
        /* height: 176px; */
        width: 100%;
        margin: 40px auto 40px;
    }
}

@media screen and (max-width: 750px) {
    .head-banner .el-carousel__container{
        height: 460px;
    }
    .carousel-item-box{
        position: relative;
    }
    .carousel-item-box-text{
        position: absolute;
        top:82px;
        left: 50%;
        width: 100%;
        margin-left: -50%;
        /* height: 100%; */
        overflow: hidden;
        text-align: center;
    }
    .carousel-item-box-text-title{
        font-size: 48px;
        font-family: HarmonyOS Sans SC;
        font-weight: bold;
        color: #fff;
        /* line-height: 66px; */
    }
    .carousel-item-box-text-body{
        font-size: 24px;
        font-family: HarmonyOS Sans SC;
        font-weight: 400;
        color: #fff;
        line-height: 66px;
    }
    /* 新闻列表 */
    .new-list{
        /* height: 1300px; */
    }
    .new-tag-box{
        margin: 20px auto 20px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .new-tag{
        width: 144px;
        height: 48px;
        background: #FFFFFF;
        border: 1px solid #E0E2E4;
        border-radius: 8px;
        text-align: center;
        line-height: 48px;

        font-size: 16px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #03081A;
        margin-bottom: 10px;
    }
    .new-tag-active{
        width: 144px;
        height: 48px;
        background: #3F9AEB;
        border-radius: 8px;
        text-align: center;
        line-height: 48px;
        font-size: 16px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #FFFFFF;
        
    }
    .new-list-body{
        width: 100%;
        /* height: 1207px; */
        margin: 20px auto;
        display: flex;
        flex-wrap: wrap;
        /* justify-content: space-evenly; */
    }
    .new-list-item{
        width: 96%;
        margin: 0 auto;
        height: 448px;
        background: #FFFFFF;
        border: 1px solid #DCDCDC;
        border-radius: 8px;
        margin-bottom: 25px;
        overflow: hidden;
        margin-left: 5px;
        margin-right: 5px;
    }
    .item-img{
        width: 100%;
        height: 240px;
        background: #E4E4E4;
        border-radius: 8px 8px 0px 0px;
    }
    .item-img img {
        width: 100%;
        height: 100%;
    }
    .item-title{
        margin: 39px 0px 23px 12px;
        width: 340px;
        font-size: 20px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #03081A;

        overflow: hidden; /* 隐藏超出部分 */
        text-overflow: ellipsis; /* 显示省略号 */
        white-space: nowrap; /* 禁止换行 */
        display: inline-block; /* 确保元素能正确应用此效果 */
    }
    .item-body{
        margin: 0px 0px 30px 12px;
        width: 340px;
        font-size: 14px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #666666;

        display: -webkit-box;
        -webkit-line-clamp: 3; /* 显示的最大行数 */
        -webkit-box-orient: vertical; 
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .item-time{
        margin: 0px 0px 0px 12px;
        font-size: 14px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #999999;
    }

    .page-box{
        /* height: 176px; */
        width: 100%;
        margin: 20px auto 20px;
    }
}